Change id value from int to Guid
This commit is contained in:
@@ -4,7 +4,7 @@ namespace RazorPagesMovie.Models;
|
|||||||
|
|
||||||
public class AdminUser
|
public class AdminUser
|
||||||
{
|
{
|
||||||
public int Id { get; set; }
|
public Guid Id { get; set; }
|
||||||
|
|
||||||
[Required]
|
[Required]
|
||||||
[StringLength(100)]
|
[StringLength(100)]
|
||||||
|
|||||||
@@ -4,7 +4,7 @@ namespace RazorPagesMovie.Models;
|
|||||||
|
|
||||||
public class ContactMessage
|
public class ContactMessage
|
||||||
{
|
{
|
||||||
public int Id { get; set; }
|
public Guid Id { get; set; }
|
||||||
|
|
||||||
[Required]
|
[Required]
|
||||||
[StringLength(100)]
|
[StringLength(100)]
|
||||||
|
|||||||
Reference in New Issue
Block a user