Selector/Selector.Model/Watcher.cs

11 lines
198 B
C#
Raw Normal View History

using System;
2021-10-23 22:16:37 +01:00
using System.ComponentModel.DataAnnotations;
using Microsoft.EntityFrameworkCore;
namespace Selector.Model
{
public class Watcher
{
2021-10-23 22:16:37 +01:00
public int Id { get; set; }
}
}