12 lines
380 B
C#
12 lines
380 B
C#
namespace Application.Domain.Entity;
|
|
|
|
public class FightResultModel
|
|
{
|
|
public int result { get; set; }
|
|
public int myHarm { get; set; }
|
|
public int otHarm { get; set; }
|
|
public List<string> myStateData { get; set; }
|
|
public List<dynamic> myRemData { get; set; }
|
|
public List<string> otStateData { get; set; }
|
|
public List<dynamic> otRemData { get; set; }
|
|
} |