14 lines
384 B
C#
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; }
|
|
}
|