namespace SessionCompanion.ViewModels.BiographyViewModels { public class BiographyViewModel { /// /// Identyfikator biografii postaci /// public int Id { get; set; } /// /// Identyfikator postaci /// public int CharacterId { get; set; } /// /// Nazwa postaci /// public string Name { get; set; } /// /// Identyfikator klasy postaci /// public int ClassId { get; set; } /// /// Identyfikator przynależności postaci /// public int AlignmentId { get; set; } /// /// Identyfikator przeszłości postaci /// public int BackgroundId { get; set; } /// /// Płeć postaci /// public string Sex { get; set; } } }