mirror of
https://github.com/OrchardCMS/Orchard.git
synced 2025-08-01 20:49:12 +08:00
#19510: EventRecord and ActionRecord in Orchard.Rules missing length attribute
Work Item: 19510 --HG-- branch : 1.x
This commit is contained in:
parent
8be5569c3c
commit
856f051764
@ -1,8 +1,11 @@
|
||||
namespace Orchard.Rules.Models {
|
||||
using Orchard.Data.Conventions;
|
||||
|
||||
namespace Orchard.Rules.Models {
|
||||
public class ActionRecord {
|
||||
public virtual int Id { get; set; }
|
||||
public virtual string Category { get; set; }
|
||||
public virtual string Type { get; set; }
|
||||
[StringLengthMax]
|
||||
public virtual string Parameters { get; set; }
|
||||
public virtual int Position { get; set; }
|
||||
|
||||
|
@ -1,8 +1,11 @@
|
||||
namespace Orchard.Rules.Models {
|
||||
using Orchard.Data.Conventions;
|
||||
|
||||
namespace Orchard.Rules.Models {
|
||||
public class EventRecord {
|
||||
public virtual int Id { get; set; }
|
||||
public virtual string Category { get; set; }
|
||||
public virtual string Type { get; set; }
|
||||
[StringLengthMax]
|
||||
public virtual string Parameters { get; set; }
|
||||
|
||||
// Parent property
|
||||
|
Loading…
Reference in New Issue
Block a user