DocSpace-buildtools/common/ASC.Core.Common/EF/Model/UserPhoto.cs

18 lines
373 B
C#

using System;
using System.ComponentModel.DataAnnotations;
using System.ComponentModel.DataAnnotations.Schema;
namespace ASC.Core.Common.EF
{
[Table("core_userphoto")]
public class UserPhoto
{
public int Tenant { get; set; }
[Key]
public Guid UserId { get; set; }
public byte[] Photo { get; set; }
}
}