Files
SVSimServer/SVSim.Database/Models/DefaultLeaderSkinSettingEntry.cs
2026-05-23 16:25:49 -04:00

14 lines
384 B
C#

using SVSim.Database.Common;
namespace SVSim.Database.Models;
/// <summary>One row per class: which leader skin is default and whether random rotation is on.</summary>
public class DefaultLeaderSkinSettingEntry : BaseEntity<int>
{
public int ClassId { get => Id; set => Id = value; }
public int IsRandomLeaderSkin { get; set; }
public int LeaderSkinId { get; set; }
}