using System; using System.Collections.Generic; using System.Linq; using System.Text; namespace irisDataBase.Model { public class IrisPersonPhoto { long personId; string photoData; public long PersonId { get => personId; set => personId = value; } public string PhotoData { get => photoData; set => photoData = value; } } }