9 lines
225 B
C#
9 lines
225 B
C#
namespace Application.Domain.Entity;
|
|
|
|
public class MapEventData
|
|
{
|
|
public int minCount { get; set; }
|
|
public int maxCount { get; set;}
|
|
public string tips { get; set; }
|
|
public string offSetTips { get; set; }
|
|
} |