mirror of
https://github.com/oshima-studios/OshimaGameModule.git
synced 2025-12-05 08:09:04 +00:00
11 lines
321 B
C#
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; } = "";
|
|
}
|
|
}
|