using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace MangaMap.Model { class Admin { public int Id { get; private set; } public Admin(int id) { this.Id = id; } } }