forked from Oshima-Studios/OshimaGameModule
10 lines
275 B
C#
10 lines
275 B
C#
namespace Oshima.FunGame.WebAPI.Models
|
|
{
|
|
public class UserDaily(long user_id, long type, string daily)
|
|
{
|
|
public long user_id { get; set; } = user_id;
|
|
public long type { get; set; } = type;
|
|
public string daily { get; set; } = daily;
|
|
}
|
|
}
|