-
Notifications
You must be signed in to change notification settings - Fork 11
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
bug fixes for JingetDropDownTreeList
- Loading branch information
vahid
committed
Aug 5, 2024
1 parent
acf70db
commit 0a49eea
Showing
11 changed files
with
246 additions
and
157 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,15 +1,18 @@ | ||
namespace Jinget.Blazor.Models; | ||
|
||
public class BaseTypeModel : BaseTypeModel<byte> { } | ||
public class BaseTypeModel<TId> | ||
{ | ||
public virtual TId Id { get; set; } | ||
|
||
public virtual string? Title { get; set; } | ||
} | ||
public class BaseTypeModel : BaseTypeModel<byte> { } | ||
|
||
public class BaseTypeTreeModel<TId> : BaseTypeModel<TId> | ||
public class BaseTypeTreeModel : BaseTypeTreeModel<int> { } | ||
public class BaseTypeTreeModel<TId> : BaseTypeModel<TId> where TId : struct | ||
{ | ||
public virtual TId? ParentId { get; set; } | ||
} | ||
public class BaseTypeTreeModel : BaseTypeTreeModel<int> { } | ||
public class BaseTypeStringTreeModel : BaseTypeModel<string> | ||
{ | ||
public virtual string? ParentId { get; set; } | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.