10 lines
228 B
C#
10 lines
228 B
C#
using System;
|
|
using Volo.Abp.Application.Dtos;
|
|
|
|
namespace Sozsoft.Platform.Public;
|
|
|
|
public class ContactTitleDto : AuditedEntityDto<Guid>
|
|
{
|
|
public string Title { get; set; }
|
|
public string Abbreviation { get; set; }
|
|
}
|