mirror of
https://github.com/oshima-studios/OshimaGameModule.git
synced 2025-04-21 19:39:36 +08:00
10 lines
265 B
C#
10 lines
265 B
C#
namespace Oshima.Core.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;
|
|
}
|
|
}
|