Skip to content
This repository was archived by the owner on Feb 12, 2025. It is now read-only.

Commit 918f5b2

Browse files
committed
Created interface IDataArrayResponseDto
1 parent 37897c6 commit 918f5b2

File tree

1 file changed

+7
-0
lines changed

1 file changed

+7
-0
lines changed
Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
using System.Text.Json.Serialization;
2+
3+
public interface IDataArrayResponseDto<out TModel>
4+
{
5+
public TModel[] Data { get; }
6+
public string Object { get; }
7+
}

0 commit comments

Comments
 (0)