Newer
Older
IRIS_REFACTOR / irisDataBase / Model / IrisPersonPhoto.cs
yanxiaowei on 11 Aug 2020 373 bytes first commit
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; }
    }
}