mirror of https://github.com/abpframework/abp.git
9 changed files with 94 additions and 50 deletions
@ -1,24 +1,20 @@ |
|||
using JetBrains.Annotations; |
|||
using System; |
|||
using System.Collections.Generic; |
|||
|
|||
namespace Volo.CmsKit.MediaDescriptors |
|||
{ |
|||
public class MediaDescriptorDefinition : PolicySpecifiedDefinition, IEquatable<MediaDescriptorDefinition> |
|||
public class MediaDescriptorDefinition : PolicySpecifiedDefinition |
|||
{ |
|||
public MediaDescriptorDefinition( |
|||
[NotNull] string entityType, |
|||
[CanBeNull] string createPolicy = null, |
|||
[CanBeNull] string updatePolicy = null, |
|||
[CanBeNull] string deletePolicy = null) : base(entityType, |
|||
createPolicy, |
|||
updatePolicy, |
|||
deletePolicy) |
|||
IEnumerable<string> createPolicies = null, |
|||
IEnumerable<string> updatePolicies = null, |
|||
IEnumerable<string> deletePolicies = null) : base(entityType, |
|||
createPolicies, |
|||
updatePolicies, |
|||
deletePolicies) |
|||
{ |
|||
} |
|||
|
|||
public bool Equals(MediaDescriptorDefinition other) |
|||
{ |
|||
return base.Equals(other); |
|||
} |
|||
} |
|||
} |
|||
|
|||
Loading…
Reference in new issue