10 lines
155 B
C#
10 lines
155 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
|
|
namespace Host.Models;
|
|
|
|
public record AnalyzeImportResponseDto(
|
|
Guid Token,
|
|
List<string> Names
|
|
);
|