mirror of
https://github.com/ACEmulator/ACE
synced 2026-08-17 12:26:06 -04:00
18 lines
345 B
C#
18 lines
345 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
|
|
namespace ACE.Database.Models.World;
|
|
|
|
/// <summary>
|
|
/// Version Information
|
|
/// </summary>
|
|
public partial class Version
|
|
{
|
|
public uint Id { get; set; }
|
|
|
|
public string BaseVersion { get; set; }
|
|
|
|
public string PatchVersion { get; set; }
|
|
|
|
public DateTime LastModified { get; set; }
|
|
}
|