sockscape/server/DAL/Item.cs

14 lines
211 B
C#
Raw Normal View History

2017-08-24 21:00:52 +00:00
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace SockScape.DAL {
class Item {
public ulong Id { get; set; }
}
}