Skip to content

Commit

Permalink
feat: UTXOTag in another file
Browse files Browse the repository at this point in the history
  • Loading branch information
markettes committed Jun 26, 2024
1 parent 50ce070 commit c0bee08
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 8 deletions.
8 changes: 0 additions & 8 deletions src/Data/Models/FMUTXO.cs
Original file line number Diff line number Diff line change
Expand Up @@ -92,12 +92,4 @@ public override int GetHashCode()
return !Equals(left, right);
}
}

public class UTXOTag : Entity
{
public string Key { get; set; }
public string Value { get; set; }
public int FMUTXOId { get; set; }
public FMUTXO FMUTXO { get; set; }
}
}
9 changes: 9 additions & 0 deletions src/Data/Models/UTXOTag.cs
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
namespace NodeGuard.Data.Models;

public class UTXOTag : Entity
{
public string Key { get; set; }
public string Value { get; set; }
public int FMUTXOId { get; set; }
public FMUTXO FMUTXO { get; set; }
}

0 comments on commit c0bee08

Please sign in to comment.