Newer
Older
IRIS_REFACTOR_DH / irisDataBase / Model / IrisPersonPhoto.cs
TAN YUE on 9 Sep 2021 373 bytes 20210909 初始提交。
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; }
    }
}