diff --git a/framework/src/Volo.Abp.Cli.Core/Volo/Abp/Cli/ProjectBuilding/DownloadInfo.cs b/framework/src/Volo.Abp.Cli.Core/Volo/Abp/Cli/ProjectBuilding/DownloadInfo.cs deleted file mode 100644 index e8f51f5958..0000000000 --- a/framework/src/Volo.Abp.Cli.Core/Volo/Abp/Cli/ProjectBuilding/DownloadInfo.cs +++ /dev/null @@ -1,37 +0,0 @@ -using System.ComponentModel.DataAnnotations; -using System.ComponentModel.DataAnnotations.Schema; -using Volo.Abp.Cli.ProjectBuilding.Building; -using Volo.Abp.Domain.Entities.Auditing; - -namespace Volo.Abp.Cli.ProjectBuilding -{ - [Table("Downloads")] - public class DownloadInfo : CreationAuditedAggregateRoot - { - [Required] - [StringLength(128)] - public string ProjectName { get; set; } - - [Required] - [StringLength(42)] - public string TemplateName { get; set; } - - [Required] - public DatabaseProvider DatabaseProvider { get; set; } - - [Required] - [StringLength(20)] - public string Version { get; set; } - - public int CreationDuration { get; set; } - - public DownloadInfo(string projectName, string templateName, DatabaseProvider databaseProvider, string version, int creationDuration) - { - ProjectName = projectName; - TemplateName = templateName; - DatabaseProvider = databaseProvider; - Version = version; - CreationDuration = creationDuration; - } - } -}