NonInventPurchasingSystem/CPRNIMS.Infrastructure/Entities/Account/AttachmentExtension.cs
2026-01-20 07:44:30 +08:00

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; }
}
}