Skip to content

Commit

Permalink
Update src/AzureIoTHub.Portal/Shared/Models/v1.0/LoRaWAN/DeviceModelC…
Browse files Browse the repository at this point in the history
…ommand.cs

Co-authored-by: Kevin BEAUGRAND <9513635+kbeaugrand@users.noreply.github.com>
  • Loading branch information
audserraCGI and kbeaugrand authored Jul 21, 2022
1 parent fcfa8a2 commit 4a2df0c
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ public class DeviceModelCommand
/// </summary>
[Required(ErrorMessage = "The frame is required.")]
[MaxLength(255, ErrorMessage = "The frame should be up to 255 characters long.")]
[RegularExpression("^[0-9a-fA-F]{0, 255}$", ErrorMessage = "The frame should only contain hexadecimal characters")]
[RegularExpression("^[0-9a-fA-F]{0,255}$", ErrorMessage = "The frame should only contain hexadecimal characters")]
public string Frame { get; set; }

/// <summary>
Expand Down

0 comments on commit 4a2df0c

Please sign in to comment.