13 lines
248 B
C#
13 lines
248 B
C#
namespace ChaosBot.Database.Entity
|
|
{
|
|
public class Raffle
|
|
{
|
|
public int id { get; }
|
|
public string userId { get; private set; }
|
|
|
|
public Raffle(string userId)
|
|
{
|
|
this.userId = userId;
|
|
}
|
|
}
|
|
} |