Ombi/RequestPlex.Store/Entity.cs
2016-02-26 14:31:28 +00:00

16 lines
288 B
C#

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using Dapper.Contrib.Extensions;
namespace RequestPlex.Store
{
public class Entity
{
[Key]
public int Id { get; set; }
}
}