You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
35 lines
717 B
C#
35 lines
717 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace Myshipping.Core.Service;
|
|
|
|
public class CreateEntityInput
|
|
{
|
|
/// <summary>
|
|
///
|
|
/// </summary>
|
|
/// <example>student</example>
|
|
public string TableName { get; set; }
|
|
|
|
/// <summary>
|
|
///
|
|
/// </summary>
|
|
/// <example>Student</example>
|
|
public string EntityName { get; set; }
|
|
|
|
/// <summary>
|
|
///
|
|
/// </summary>
|
|
/// <example>AutoIncrementEntity</example>
|
|
public string BaseClassName { get; set; }
|
|
|
|
/// <summary>
|
|
///
|
|
/// </summary>
|
|
/// <example>Myshipping.Application</example>
|
|
public string Position { get; set; }
|
|
}
|