13 lines
322 B
C#
13 lines
322 B
C#
using System;
|
|
using Kurs.Platform.Enums;
|
|
using Volo.Abp.Application.Dtos;
|
|
|
|
namespace Kurs.Platform.DataSources;
|
|
|
|
public class DataSourceDto : FullAuditedEntityDto<Guid>
|
|
{
|
|
public string Code { get; set; }
|
|
public DataSourceTypeEnum DataSourceType { get; set; }
|
|
public string ConnectionString { get; set; }
|
|
|
|
}
|