17 lines
420 B
C#
17 lines
420 B
C#
using CPRNIMS.Infrastructure.Entities.Common;
|
|
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace CPRNIMS.Infrastructure.Entities.Account
|
|
{
|
|
public class AttachmentExtension : CommonProperties
|
|
{
|
|
public int Id { get; set; }
|
|
public int ExtensionId { get; set; }
|
|
public string? ExtensionName { get; set; }
|
|
}
|
|
}
|