Class ResourceFieldsModel
Class that defines resource fields model.
Inheritance
System.Object
ResourceFieldsModel
Implements
System.IEquatable<ResourceFieldsModel>
Namespace: Syncfusion.Blazor.Gantt
Assembly: Syncfusion.Blazor.dll
Syntax
public class ResourceFieldsModel : Object, IEquatable<ResourceFieldsModel>
Constructors
ResourceFieldsModel()
Declaration
public ResourceFieldsModel()
Properties
Group
To map group of resource from resource collection.
Declaration
public string Group { get; set; }
Property Value
Type | Description |
---|---|
System.String |
Id
To map id of resource from resource collection.
Declaration
public string Id { get; set; }
Property Value
Type | Description |
---|---|
System.String |
Name
To map name of resource from resource collection.
Declaration
public string Name { get; set; }
Property Value
Type | Description |
---|---|
System.String |
Unit
To map unit of resource from resource collection.
Declaration
public string Unit { get; set; }
Property Value
Type | Description |
---|---|
System.String |
Methods
Equals(ResourceFieldsModel)
Returns boolean value by comparing resourceFieldsModel
Declaration
public bool Equals(ResourceFieldsModel resourceFieldsModel)
Parameters
Type | Name | Description |
---|---|---|
ResourceFieldsModel | resourceFieldsModel |
Returns
Type | Description |
---|---|
System.Boolean |
Equals(Object)
Returns boolean value by comparing object
Declaration
public override bool Equals(object obj)
Parameters
Type | Name | Description |
---|---|---|
System.Object | obj |
Returns
Type | Description |
---|---|
System.Boolean |
GetHashCode()
Returns hashcode for current object
Declaration
public override int GetHashCode()
Returns
Type | Description |
---|---|
System.Int32 |
Implements
System.IEquatable<>