You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 

19 lines
516 B

using System;
using System.ComponentModel;
using Volo.Abp.Application.Dtos;
using Volo.Abp.Data;
using Volo.Abp.MultiTenancy;
using Win_in.Sfs.Shared.Domain;
namespace Win_in.Sfs.Shared.Application.Contracts;
public abstract class SfsCreateOrUpdateInputBase : EntityDto, IHasExtraProperties, IMultiTenant, IRemark
{
[DefaultValue(null)]
public Guid? TenantId { get; set; }
public string Remark { get; set; }
[DefaultValue("{}")]
public ExtraPropertyDictionary ExtraProperties { get; set; }
}