mirror of
https://github.com/simtactics/mysimulation.git
synced 2025-03-25 10:49:11 +00:00
10 lines
226 B
C#
10 lines
226 B
C#
|
namespace FSO.Server.Database.DA.Neighborhoods
|
|||
|
{
|
|||
|
public class DbNhoodBan
|
|||
|
{
|
|||
|
public uint user_id { get; set; }
|
|||
|
public string ban_reason { get; set; }
|
|||
|
public uint end_date { get; set; }
|
|||
|
}
|
|||
|
}
|