Mineplex2018-withcommit/Website/LOC.Core/Tokens/AccountTask.cs

15 lines
279 B
C#
Raw Permalink Normal View History

2015-05-13 03:59:22 +02:00
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
namespace LOC.Core.Tokens
{
public class AccountTask
{
public int Id { get; set; }
2015-05-13 03:59:22 +02:00
public string Task { get; set; }
public string UUID { get; set; }
}
}