11 lines
321 B
C#

namespace Oshima.FunGame.OshimaServers.Model
{
public class LastStoreModel
{
public DateTime LastTime { get; set; } = DateTime.MinValue;
public bool IsDaily { get; set; } = false;
public string StoreRegion { get; set; } = "";
public string StoreName { get; set; } = "";
}
}