mirror of
https://github.com/Ombi-app/Ombi.git
synced 2025-07-16 02:02:55 -07:00
16 lines
288 B
C#
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; }
|
|
}
|
|
}
|