Class FactionLocalization
- Namespace
- Uncreated.Warfare.Models.Factions
- Assembly
- Uncreated.Warfare.dll
[Table("faction_translations")]
public class FactionLocalization
- Inheritance
-
FactionLocalization
- Inherited Members
-
Properties
Abbreviation
[MaxLength(8)]
public string? Abbreviation { get; set; }
Property Value
- string
Faction
[Required]
public Faction Faction { get; set; }
Property Value
- Faction
FactionId
[Required]
[Column("Faction")]
[ForeignKey("Faction")]
public uint FactionId { get; set; }
Property Value
- uint
Id
[Key]
[DatabaseGenerated(DatabaseGeneratedOption.Identity)]
[Column("pk")]
public uint Id { get; set; }
Property Value
- uint
Language
[Required]
public LanguageInfo Language { get; set; }
Property Value
- LanguageInfo
LanguageId
[Required]
[ForeignKey("Language")]
[Column("Language")]
public uint LanguageId { get; set; }
Property Value
- uint
Name
[MaxLength(32)]
public string? Name { get; set; }
Property Value
- string
ShortName
[MaxLength(24)]
public string? ShortName { get; set; }
Property Value
- string