8 lines
105 B
C#
8 lines
105 B
C#
|
namespace BlueWest.Views.Models;
|
||
|
|
||
|
public record IpInformation
|
||
|
(
|
||
|
IpType IpType,
|
||
|
string Address
|
||
|
);
|