namespace Application.Domain.Entity; public class FightResultModel { public int result { get; set; } public int myHarm { get; set; } public int otHarm { get; set; } public List myStateData { get; set; } public List myRemData { get; set; } public List otStateData { get; set; } public List otRemData { get; set; } }